home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / clone200.zip / VIEW.CMD < prev   
OS/2 REXX Batch file  |  1996-11-06  |  284b  |  20 lines

  1. @echo off
  2. REM
  3. REM  View the file from  Clone Cleaner (CloneCln.Exe)
  4. REM
  5. REM  Parameters  %1 = Filename, %2=A | B,  %3=FileSize */
  6. REM
  7. if %2. == A. goto ascii
  8. if %2. == B. goto binary
  9.  
  10. :ascii
  11.     E.exe   %1 %3
  12. goto done
  13.  
  14. :binary
  15.     List2.exe   %1
  16. goto done
  17.  
  18. :done
  19.  
  20.